home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / cddk9606.zip / TUTOR.ARJ / INIT.SCR < prev    next >
Text File  |  1996-06-14  |  6KB  |  127 lines

  1.  
  2. ; Greetings, Sysop!
  3. ;
  4. ; This is the standard configuration file included with many products
  5. ; designed with the Concerto Door Development Kit.  You will not have
  6. ; to modify this script unless you run a unique system or want to change
  7. ; the initialization sequence.
  8.  
  9.  
  10. ; ┌─────────────────────────────────────────────────────────────────────────┐
  11. ; │ ▒▒▒ Initialization of Variables ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  12. ; └─────────────────────────────────────────────────────────────────────────┘
  13.  
  14.   GetParam B, Baud            ; Baud rate for the current session
  15.   GetParam C, ComPort         ; Communications port
  16.   GetParam N, Node            ; Node number
  17.   GetParam O, LockedBaud      ; Locked baud rate
  18.   GetParam P, DropFile        ; Full path and name of the drop file
  19.  
  20.   AVATARClrScrColor = 3       ; Default AVATAR clear-screen color
  21.   CheckSnow         = No      ; Slow down output for older monitors?
  22.   DBS               = Yes     ; Destructive backspaces?
  23.   DirectVideo       = Yes     ; Write directly to video RAM (faster)?
  24.  
  25.   Randomize Timer
  26.  
  27.  
  28. ; You should assign the next few variables if the information is not
  29. ; passed in the drop file (refer to your BBSs' documentation for details).
  30.  
  31. BBSName      = "[No BBS]"
  32. SysopFirst   = Who
  33. SysopLast    = Knows?
  34. UserFirst    = Some
  35. UserLast     = One
  36. UserLocation = Elsewhere
  37.  
  38.  
  39. ; ┌─────────────────────────────────────────────────────────────────────────┐
  40. ; │ ▒▒▒ Session (Communications) Startup ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  41. ; └─────────────────────────────────────────────────────────────────────────┘
  42.  
  43.   LoadDropFile
  44.   InitFOSSIL
  45.   DetectANSI "~|[ansi detection]~|"
  46.   Color 7
  47.  
  48.  
  49. ; ┌─────────────────────────────────────────────────────────────────────────┐
  50. ; │ ▒▒▒ Setup Chat-Mode ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  51. ; └─────────────────────────────────────────────────────────────────────────┘
  52.  
  53.   ChatGreeting   = "~FGreeting.ANS|~|"
  54.   ChatGoodbye    = "|0F~|■|07 Exiting chat mode...~|~|"
  55.   ChatExecPrompt = "|07Command: "
  56.   ChatRemoteExit = True
  57.  
  58.   ; ChatGreeting is shown upon entry into the chat mode.  ChatGoodbye is
  59.   ; shown when the chat mode is terminated.  ChatExecPrompt is displayed
  60.   ; when the sysop enters the chat-mode command interpreter.  Refer to
  61.   ; SYSOP.DOC for more information.
  62.  
  63.   IceChatColors
  64.  
  65.  
  66. ; ┌─────────────────────────────────────────────────────────────────────────┐
  67. ; │ ▒▒▒ Status Lines ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  68. ; └─────────────────────────────────────────────────────────────────────────┘
  69.  
  70.   Status Help,     2, "|3F Alt-C |31Chat  |3FAlt-H |31Hang Up  |3FAlt-X |31Exit  |3FPgUp/PgDn |31Fade In/Out  |3FF-10 |31Hide~CE~| {Application} {Version} ∙ {Copyright}~CE"
  71.   Status UserInfo, 2, "|3F {UserFirst} {UserLast} of {UserLocation} (security {Security})~CE~||31 {BBSName} ∙ Sysop: {SysopFirst} {SysopLast} ∙ {Baud} baud ∙ COM{ComPort} ∙ Node {Node}~CE"
  72.   Status Quote,    1, "|31 What is now proved was once only imagin'd. - William Blake~CE"
  73.   Status Peter,    1, "|31 Piotr Ilich Tchaikovsky [1840 - 1893] · Rest in peace, friend...~CE"
  74.   ;        │    │    │
  75.   ;        │    │    └─ The text shown in the status line.  You may use any
  76.   ;        │    │       variables, color codes, or control codes.  Be sure to
  77.   ;        │    │       end the string with the ~CE control code, which erases
  78.   ;        │    │       the text between the cursor and the right side of the
  79.   ;        │    │       screen.  Otherwise, you may see parts of the previous
  80.   ;        │    │       status line when switching lines!      
  81.   ;        │    │
  82.   ;        │    └────── The size of the status line.
  83.   ;        │
  84.   ;        └─────────── A name associated with this particular status line.
  85.   ;                     From this point on, you will always use this name
  86.   ;                     to identify the status line.  YOU MUST USE A UNIQUE
  87.   ;                     NAME!  That is, don't use the name of a command or
  88.   ;                     variable.
  89.  
  90.   
  91. ; ┌─────────────────────────────────────────────────────────────────────────┐
  92. ; │ ▒▒▒ SysKeys (Function Keys) ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  93. ; └─────────────────────────────────────────────────────────────────────────┘
  94.  
  95.   SysKey $2E00, "Chat"                ; Alt-C
  96.   SysKey $2300, "HangUp Exit 0"       ; Alt-H
  97.   SysKey $3100, "LineNoise"           ; Alt-N
  98.   SysKey $2D00, "Exit 0"              ; Alt-X
  99.   SysKey $5100, "FadeOut"             ; Page Down
  100.   SysKey $4900, "FadeIn"              ; Page Up
  101.   SysKey $3B00, "ShowStatus Help"     ; F1
  102.   SysKey $3C00, "ShowStatus UserInfo" ; F2
  103.   SysKey $3D00, "ShowStatus Peter"    ; F3
  104.   SysKey $3E00, "ShowStatus Quote"    ; F4
  105.   SysKey $4400, "HideStatus"          ; F10
  106.   SysKey $4800, "IncTimeLeft 5"       ; Arrow Up
  107.   SysKey $5000, "DecTimeLeft 5"       ; Arrow Down
  108.   ;        │      │
  109.   ;        │      └─ Command(s) to execute when the scan code is pressed
  110.   ;        │         on the local computer.  Remote callers cannot use
  111.   ;        │         SysKeys.
  112.   ;        │
  113.   ;        └──────── Keyboard scan code. The door will execute the specified
  114.   ;                  commands when the scan code is pressed on the local
  115.   ;                  computer.  Refer to SYSOP.DOC for a list of scan codes.
  116.  
  117.  
  118. ; CheckLocalMode
  119.  
  120. Application = "Tutorial Series"
  121. Author      = "David Pinch"
  122. Build       = 960616
  123. Company     = Altair
  124. Copyright   = "Copyright 1996 David Pinch ∙ All Rights Reserved"
  125. Version     = 1.0
  126.  
  127.